Chili.Opf3 Send comments on this topic.
ObjectListHolder Constructor(Generic IList,String,Object[])
See Also 
Chili.Opf3.Relations Namespace > Generic ObjectListHolder Class > ObjectListHolder Constructor : ObjectListHolder Constructor(Generic IList,String,Object[])




list
List that is populated with the connected objects.
conditions
OPath that is used when retrieving the objects. For more information about OPath look at the ObjectQuery class.
parameters
A list of parameters that are used in the OPath expression.
Creates a new instance of the ObjectListHolder Class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal list As IList(Of T), _
   ByVal conditions As String, _
   ByVal ParamArray parameters() As Object _
)
Visual Basic (Usage)Copy Code
Dim list As IList(Of T)
Dim conditions As String
Dim parameters() As Object
 
Dim instance As ObjectListHolder(Of T)(list, conditions, parameters)
C# 
public Generic ObjectListHolder( 
   IList<T> list,
   string conditions,
   params object[] parameters
)
Managed Extensions for C++ 
public: Generic ObjectListHolder( 
   IList<T>* list,
   string* conditions,
   params Object*[]* parameters
)
C++/CLI 
public:
Generic ObjectListHolder( 
   IList<T>^ list,
   String^ conditions,
   ... array<Object^>^ parameters
)

Parameters

list
List that is populated with the connected objects.
conditions
OPath that is used when retrieving the objects. For more information about OPath look at the ObjectQuery class.
parameters
A list of parameters that are used in the OPath expression.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also